.Main-first-section {
  background-color: transparent;
  height: max-content ;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 2)), url("/Images/News/Malta\ Guinness.jpg");
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "roboto", sans-serif;
  position: relative;
  padding-bottom: 20px;
  animation: bcg 5s ease infinite ;
}
@keyframes bcg {
  0% {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 2)),
    url("/Images/News/Malta\ Guinness.jpg");
  background-size: cover;

  }
  50% {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 2)),
    url("/Images/News/malta\ guinness\ image.jpg");
  background-size: cover;
  background-position: top;

  }
  100% {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 2)),
    url("/Images/News/Malta\ Guinness.jpg");
  background-size: cover;

  }
  
}

.Main-first-image-background {
  display: flex;
  justify-content: center;
  align-items: center;
  height: max-content;
  width: max-content;
}

.Main-first-details {
  margin-top: 350px;
  position: relative;
  cursor: default;
  width: 100%;
  padding: 40px;
}
.Main-first-heading h4 {
  color: white;
  font-weight: 900;
  font-size: 70px;
}
.MVP-name p {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

.Main-first-update-time {
  color: white;
  margin-top: 20px;
}
.Main-first-update-time p {
  font-weight: 100;
  font-size: 13px;
}
.Main-first-read-more {
  color: var(--main-color);
  margin-top: -80px;
  margin-bottom: 30px;
  margin-bottom: 5px;
}
.Main-first-read-more a {
  font-size: 16px;
  color: var(--main-color);
  text-decoration: none;
  font-style: italic;
  font-weight: 300;
  font-family: "poppins";
}
.Main-first-read-more:hover a {
  color: var(--hover-color);
}
.Main-first-read-more:hover i {
  color: var(--hover-color);
}
p {
  margin: 0;
  padding: 0;
}
.scroll-down {
  margin-top: 20px;
  cursor: pointer;
  margin-bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main-color);
  flex-direction: column;
  animation: bounce 1s linear alternate infinite;
}
@keyframes bounce {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
.scroll-down p {
  font-size: 17px;
}

.arrow-for-beauty {
  width: 20px;
  height: 5px;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  margin-top: 80px;
}
.arrow-for-beauty:hover {
  width: 60px;
 
}
.Main-first-details::before {
  position: absolute;
  content: "";
  inset: 20;
  margin-top: 50px;
  width: 60px;
  height: 5px;
  background-color: var(--main-color);
  transition: width 0.6s ease;
}
.Main-first-details:hover::before {
  width: 400px;
}

/* MEDIA QUERIES  */

/*......................... LAPTOP DISPLAYS ...............  */
@media screen and (min-width: 930px) and (max-width: 1440px) {
  .Main-first-section {
    scroll-behavior: smooth;
    background-color: transparent;
    height: max-content;
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "roboto", sans-serif;
    position: relative;
    padding-bottom: 20px;
    transition: all 0.3s ease;
    animation: bcg 10s ease-in-out infinite;
  }

  .Main-first-image-background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    
    width: max-content;
    overflow: hidden;
    padding: 20px;
  
  }

  .Main-first-details {
    margin-top: 100px;
    position: relative;
    cursor: default;
  }
  .Main-first-details::before {
    position: absolute;
    content: "";
    inset: 20;
    margin-top: 30px;
    width: 200px;
    height: 3.5px;
    background-color: var(--main-color);
  }
  .Main-first-details:hover::before {
    position: absolute;
    content: "";
    inset: 20;
    margin-top: 30px;
    width: 350px;
    height: 3.5px;
    background-color: var(--main-color);
  }

  .Main-first-heading h4 {
    color: white;
    font-weight: 600;
    font-size: 40px;
    font-family: "poppins", sans-serif;
  }
  .MVP-name p {
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px !important;
  }

  .Main-first-update-time {
    color: white;
  }
  .Main-first-update-time p {
    font-weight: 100;
    font-size: 13px;
  }
  .Main-first-read-more {
    color: var(--main-color);
    padding-top: 30px;
  }
  .Main-first-read-more a {
    font-size: 14px;
    color: var(--main-color);
    text-decoration: none;
    font-style: italic;
    font-weight: 300;
    font-family: "poppins";
  }
  .Main-first-read-more:hover a {
    color: var(--hover-color);
    font-weight: 600;
  }
  .Main-first-read-more:hover i {
    color: var(--hover-color);
  }
  p {
    margin: 0;
    padding: 0;
  }
  .scroll-down {
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    flex-direction: column;
    animation: bounce 1s linear alternate infinite;
  }
  .scroll-down:hover {
    color: var(--hover-color);
  }
  @keyframes bounce {
    0% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  .scroll-down p {
    font-size: 17px;
  }
}
/* MOBILE PHONES  DISPLAYS  */
@media screen and (min-width: 770px) and (max-width: 929px) {
  .Main-first-section {
    scroll-behavior: smooth;
    background-color: transparent;
    height: max-content;
    background-size: cover;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "roboto", sans-serif;
    position: relative;
    padding-bottom: 20px;
    animation: bcg 10s ease-in-out infinite;
  }

  .Main-first-image-background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    width: max-content;
  }

  .Main-first-details {
    margin-top:0px;
    position: relative;
    cursor: default;
    padding: 200px 20px 20px 20px;
  }

  .Main-first-details::before {
    position: absolute;
    content: "";
    inset: 20;
    margin-top: 20px;
    width: 100px;
    height: 3.5px;
    background-color: var(--main-color);
  }
  .Main-first-details:hover::before {
    width: 400px;
  }

  .Main-first-heading h4 {
    color: white;
    font-weight: 700;
    font-family: "poppins", sans-serif;
    font-size: 35px;
  }
  .MVP-name p {
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    margin-top: -20px;
    
  }

  .Main-first-update-time {
    color: white;
    margin-top: 0px;
  }
  .Main-first-update-time p {
    font-weight: 100;
    font-size: 12px;
    font-family: "roboto", sans-serif;
  }
  .Main-first-read-more {
    color: var(--main-color);
    margin-top: -20px;
    margin-bottom: 5px;
  }
  .Main-first-read-more a {
    font-size: 14px;
    color: var(--main-color);
    text-decoration: none;
    font-style: italic;
    font-weight: 300;
    font-family: "poppins";
  }
  .Main-first-read-more:hover a {
    color: var(--hover-color);
    font-weight: 600;
  }
  .Main-first-read-more:hover i {
    color: var(--hover-color);
  }
  p {
    margin: 0;
    padding: 0;
  }
  .scroll-down {
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    flex-direction: column;
    animation: bounce 1s linear alternate infinite;
  }
  .scroll-down p {
    font-size: 16px !important;
  }
  .scroll-down i {
    font-size: 20px !important;
  }
  .scroll-down:hover {
    color: var(--hover-color);
  }
  @keyframes bounce {
    0% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  .scroll-down p {
    font-size: 17px;
  }
}

/* MOBILE PHONES  DISPLAYS  */
@media screen and (min-width: 320px) and (max-width: 769px) {
  .Main-first-section {
    scroll-behavior: smooth;
    background-color: transparent;
    height: max-content;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "roboto", sans-serif;
    position: relative;
    animation: bcg 10s ease-in-out infinite;
  }

  .Main-first-image-background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: max-content;
  }

  .Main-first-details {
    margin-top: 120px;
    position: relative;
    cursor: default;
    padding: 10px;
  }

  .Main-first-details::before {
    position: absolute;
    content: "";
    inset: 20;
    margin-top: 20px;
    width: 100px;
    height: 3px;
    margin-left: 120px;
    background-color: var(--main-color);
  }
  .Main-first-details:hover::before {
    width: 100px;
  }
  .Main-first-heading h4 {
    color: white;
    text-align: center;
    font-weight:600;
    font-family: "poppins", sans-serif;
    font-size: 25px;
    list-style: none;
  }
  .MVP-name p {
    font-size: 10px;
    font-style: italic;
    text-align: center;
    font-weight: 300;
    margin-bottom: -30px !important;
  }

  .Main-first-update-time {
    color: white;
    margin-top: 0px;
  }
  .Main-first-update-time p {
    font-weight: 100;
    font-size: 9px;
    font-family: "roboto", sans-serif; 
    text-align: center;
  }
  .Main-first-read-more {
    color: var(--main-color);
    margin-top: 10px;
    text-align: center;
  }
  .Main-first-read-more a {
    font-size: 10px;   
   
    color: var(--main-color);
    text-decoration: none;
    font-style: italic;
    font-weight: 300;
    font-family: "poppins";
  }
  .Main-first-read-more:hover a {
    color: var(--hover-color);
    font-weight: 600;
  }
  .Main-first-read-more:hover i {
    color: var(--hover-color);
  }
  p {
    margin: 0;
    padding: 0;
  }
  .scroll-down {
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    flex-direction: column;
    animation: bounce 1s linear alternate infinite;
  }
  .scroll-down p {
    font-size: 10px !important;
  }
  .scroll-down i {
    font-size: 10px !important;
  }
  .scroll-down:hover {
    color: var(--hover-color);
  }
  @keyframes bounce {
    0% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  .scroll-down p {
    font-size: 17px;
  }
}
